home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / C Internet Config / IC Application Source ƒ / Headers ƒ / RequiredEventSupport.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-01  |  546 b   |  46 lines  |  [TEXT/SPM ]

  1. /*
  2.     RequiredEventSupport.h
  3.     
  4.     Header file for RequiredEventSupport.c
  5.     
  6.     Also specifies the UPP stuff for general AppleEvent handling procedures.
  7.     
  8. */
  9.  
  10. #pragma once
  11.  
  12. #ifndef __H_RequiredEventSupport__
  13. #define __H_RequiredEventSupport__
  14.  
  15. #include "IC Window Globals.h"
  16.  
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20.  
  21. OSErr InitAppleEvents(ApplicationUPP oapp,DocumentUPP odoc,
  22.     DocumentUPP pdoc,ApplicationUPP quit);
  23.  
  24. OSErr GotRequiredParams(AppleEvent* theAppleEvent);
  25.  
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29.  
  30. #endif /* __H_RequiredEventSupport__ */
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.